:root {
	box-sizing: border-box;
}

*,
::before,
::after {
	box-sizing: inherit;
}

body {
	background-color: tan;
	font-family: Helvetica, Arial, sans-serif;
	margin-top: 0;
}

.container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: repeat (5, auto);
	grid-gap: 0em;
	max-width: 960px;
	margin: 0 auto;
}

.fixed-content {
	grid-column: 1/3;
	grid-row: 1/4;
	width: 960px;
	margin: 0;
	padding: 0;
	top: 0;
	position: fixed;
	z-index: 1;
	box-shadow: 0 .3em .5em black;
}


header,
nav {
	grid-column: 1/3;
	grid-row: span 1;
}

.strip-nav {
	display: flex;
	background-color: black;
	color: white;
	margin: 0;
	list-style-type: none;
	justify-content: flex-end;
}

.strip-nav > li > a {
	display: block;
	margin: .5em 1em;
	color: white;
	text-decoration: none;
	font-size: 0.6em;
	font-weight: bold;
	text-transform: uppercase;
}

header {
	background-image: url("../graphics/photoStrip.jpg");
	height: 160px;
	color: white;
	font-weight: bold;
	font-size: 2em;
	display: flex;
}

header > h1 {
	align-self: center;
	margin: 0 auto;
}

.site-nav {
	display: flex;
	background-color: #3e595a;
	list-style-type: none;
	margin: 0;
	padding: 0;
	justify-content: space-around;
	position: relative;
}

.site-nav > li:hover {
	background-color: tan;
}

.site-nav > li > a {
	display: block;
	padding: 0.5em 1em;
	color: white;
	text-decoration: none;
	font-size: 0.75em;
	font-weight: bold;
	text-transform: uppercase;
}

.submenu {
	display: none;
	position: absolute;
	margin: 0;
	padding: 0;
	background-color: tan;
	list-style-type: none;
	font-size: 1em;
}

.submenu > li {
	padding: 0.5em;
}

.submenu > li > a {
	text-decoration: none;
	color: white;
}

.submenu > li:hover {
	background-color: #999;
}

.site-nav > li:hover .submenu {
	display: block;
}


.center {
	text-align: center;
}

.main-content {
	grid-column: 1/3;
	grid-row: 4/5;
	width: 960px;
	display: flex;
	margin-top: 210px;
}

section {
	grid-column: 1/2;
	grid-row: 4/5;
	margin-right: 0.5em;
	padding: 0 3em;
	background-color: white;
	font-size: .875em;
	flex: 1;
}

section p {
	text-align: justify;
}

aside {
	grid-column: 2/3;
	grid-row: 4/5;
	margin-left: 0.5em;
	padding: 0 3em;
	background-color: white;
	font-size: 0.875em;
	flex: 1;
}

aside p {
	text-align: justify;
}

aside.center h5 {
	margin-bottom: .4em;
}

aside.center img {
	display: block;
	margin: .5em auto;
}

footer {
	grid-column: 1/3;
	grid-row: 5/6;
	display: flex;
	background-color: #3e595a;
	color: white;
	font-size: 0.8em;
	padding: 2em;
}

footer p {
	margin: 0;
	padding: 0;
}

.contact {
	flex-basis: 40%;
	color: white;
}

.contact h3 {
	margin-bottom: 0;
}

.facebook {
	flex-basis: 30%;
	align-self: flex-end;
	text-align: center;
}

.copyright {
	flex-basis: 30%;
	padding-left: 3em;
	align-self: flex-end;
}

.copyright img {
	display: inline;
}